

ul{
  text-align: center;
  color: #EBFFFF;
  background-color: #104760;
  list-style: none;
  margin: 0;
  padding: 5px 0;
}

.horizontal{
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 100%; */
  flex-wrap: wrap;
  gap: 10px 0;
  margin: 15px 0px 150px 0px;
  
}

li{
  padding-right: 25px;
}

body{
    background-color: #082735;
    color: #EBFFFF;
    font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
    
}


h1 {
    text-align: center;
    font-size: 50px;
    margin-bottom: 75px;
      font-family: "Sixtyfour", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "BLED" 0,
    "SCAN" 0;
      
}  

h4, span {
  text-align: center;
  font-size: 25px;
  letter-spacing: 5px;
    opacity: 0; /* Unsichtbar am Anfang */
    display: block;
    animation: fadeIn 3.5s forwards; /* Animation pro Buchstabe */
    justify-content: center;

}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(200px); }
    to   { opacity: 1; transform: translateY(0); }
  }




a {
    color: inherit;       /* übernimmt die umgebende Textfarbe */
    text-decoration: none; /* entfernt Unterstreichung */
    font-size: 1rem;
}


a:hover {
    font-weight: bold;
    text-decoration: none;
  }

@media (max-width: 600px) {
  ul, li {
      flex-direction: column; /* Navigation untereinander */
      align-items: center;
  }

   li {
              padding: 0;
            }

  .horizontal {
               gap: 8px;
              flex-wrap: wrap;
              margin-bottom: 60px;
  }

  /* ul, li a {
       padding: 0.8rem;
       width: 100%;
       text-align: center;
       border-bottom: 1px;
  } */

  .horizontal li a {
        font-size: 0.9rem;     /* kleinere Schrift */
        padding: 0.4rem 0.6rem;
            }

  header {
       font-size: 1rem;
  }

  .container {
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
        gap: 15px;
            }
}




